![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Not really an Element#classList
polyfill. IE9 doesn’t have classList, and other browsers have incomplete implementations; hence, this module.
This module is intended for use in the browser via browserify. It can be installed via npm:
$ npm install classlist
And then used like so:
var ClassList = require('classlist')
var element = document.querySelector('.foo'),
list = ClassList(element)
// Add a class:
list.add('bar')
// Remove another:
list.remove('baz')
// Toggle:
list.toggle('quux')
// Check for existence:
if (list.contains('bar')) {
alert('Whee')
}
This module mostly tracks the offical API, but returns the context wherever possible; this allows you to do things like:
ClassList(element)
.add('foo', 'bar')
.remove('baz')
.toggle('quux')
Note that using new
is optional. Returns an array-like object of the element’s classes. This object has several handy methods; see below.
Adds one or more classes to the element originally used to construct the list
. If the class is already present on the element, it is not added again. Returns the context to allow chaining.
Removes one or more classes from the element. Returns the context to allow chaining.
Toggles a class on the element; adds the class if it is not present, and removes it otherwise. When force
is true, the class is always added; when false, the class is removed (i.e. .toggle(class, true)
is equivalent to .add(class)
, and .toggle(class, false)
is equivalent to .remove(class)
). Returns the context to allow chaining.
Returns true if the element has the given class; false otherwise.
ClassList should work in just about every browser, up to and including IE6. If it doesn’t, open an issue.
MIT.
FAQs
Element#classList for older browsers.
The npm package classlist receives a total of 4,816 weekly downloads. As such, classlist popularity was classified as popular.
We found that classlist demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.